home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / prtrep51.zip / REPSRC.ZIP / REPDEM07.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-24  |  711b  |  39 lines

  1. unit Repdem07;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls, PrMemo, DBCtrls, DB, DBTables;
  7.  
  8. type
  9.   TDem07Form = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Bevel1: TBevel;
  13.     Label1: TLabel;
  14.     DataSource1: TDataSource;
  15.     Table1: TTable;
  16.     DBMemo1: TDBMemo;
  17.     DBNavigator1: TDBNavigator;
  18.     PrintMemo1: TPrintMemo;
  19.     procedure OKBtnClick(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   Dem07Form: TDem07Form;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TDem07Form.OKBtnClick(Sender: TObject);
  34. begin
  35.     PrintMemo1.Execute;
  36. end;
  37.  
  38. end.
  39.